home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz Kr0nlcKLeZ 1 / HaCKeRz Kr0nlcKLeZ.iso / chibacity / gbbdisk.arj / PROTMODE / NOTIMP.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-08-03  |  590 b   |  14 lines

  1. ;*******************************************************************************
  2. ;* Interrupt handler for protected mode interrupts that are not implemented.   *
  3. ;*******************************************************************************
  4. ;(C) 1995 American Eagle Publications, Inc., All rights reserved!
  5.  
  6. NOT_IMPLEMENTED:
  7.                 mov     ax,DATA_1_SEL
  8.                 mov     ds,ax
  9.                 mov     esi,OFFSET NIF_REPORT
  10.                 call    DISPLAY_MSG
  11.                 jmp     SHORT $
  12.  
  13. NIF_REPORT      DB      'Unimplemented Fault. Halting system! ',0
  14.